home *** CD-ROM | disk | FTP | other *** search
/ BMUG PD-ROM 1995 Fall / PD-ROM F95.toast / Programming / Programming Utilities / String Magic 1.0 ƒ / Example.str < prev    next >
Encoding:
Text File  |  1991-04-24  |  1.7 KB  |  68 lines  |  [TEXT/ttxt]

  1. ##################################################################
  2. #
  3. # This is the source file for the String Magic Application
  4. #
  5. ##################################################################
  6.  
  7. %    # Percent sign introduces a new resource
  8. StringMagicStrings 128 purgeable
  9. sRez                "Rez"
  10. sResource            "Resource"
  11. sSelSourcePrompt      "Select Source File"
  12. sSelResourcePrompt  "Select Resource File"
  13. sNewResourcePrompt  "Create Resource File As"
  14. sNewRezPrompt          "Create Rez File As"
  15. sNewHeaderPrompt      "Create Header File As"
  16.  
  17. # Plus sign Forces next string to begin a new block
  18. # when generating 'STR3' resources.  (It is ignored
  19. # for 'STR2' and 'STR#' resources
  20. +
  21.  
  22. #===============================
  23. # Help messages for the Help Box
  24. #===============================
  25.  
  26. sGeneralHelp        "\
  27. Use String Magic to Generate and Maintain
  28. String Resources."
  29.  
  30. sCompileHelp        "\
  31. Generate string resources defined by the 
  32. currently selected source file."
  33.  
  34. sQuitHelp            "\
  35. Quit String Magic."
  36.  
  37. sStr3Help            "\
  38. Generate 'STR3' type string resources."
  39.  
  40. sStr2Help            "\
  41. Generate 'STR2' type string resources."
  42.  
  43. sStrHelp            "\
  44. Generate 'STR\#' type string resources."
  45.  
  46. sAppendHelp            "\
  47. Do NOT delete the currently selected resource
  48. file before adding the new string resources."
  49.  
  50. sRezHelp            "\
  51. Generate Rez source files instead of actual
  52. resources."
  53.  
  54. sSelectSourceHelp    "\
  55. Select the source file to be compiled into
  56. string resources."
  57.  
  58. sSelectResourceHelp    "\
  59. Select the resource output file that will
  60. contain the new string resources."
  61.  
  62. sSelectRezHelp        "\
  63. Select the Rez file that will contain 
  64. the new string resource definitions."
  65.  
  66. sSelectHeaderHelp    "\
  67. Select the header output file that will contain
  68. the new \#defines for the the string resources."